home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Plotting / aa_Intel_Only / Gnuplot / GnuplotSource / ContourSeriesPane.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  676 b   |  38 lines

  1. /*
  2.  *  Copyright (C) 1993  Robert Davis
  3.  *
  4.  *  This program is free software; you can redistribute it and/or
  5.  *  modify it under the terms of Version 2, or any later version, of 
  6.  *  the GNU General Public License as published by the Free Software 
  7.  *  Foundation.
  8.  */
  9.  
  10. /* $Id: ContourSeriesPane.h,v 1.2 1993/05/04 16:21:26 davis Exp $ */
  11.  
  12. #import "Pane.h"
  13.  
  14.  
  15. @interface ContourSeriesPane:Pane
  16. {
  17.     id        seriesMatrix;
  18.     id        startField;
  19.     id        incrField;
  20.     id        endField;
  21.  
  22.     id        levelsForm;
  23.     id        levelsFormCell;
  24. }
  25.  
  26.  
  27. - init;
  28.  
  29. - (BOOL)updateStatus:aStatus doc:aDoc;
  30. - selectControl:sender;
  31.  
  32. - setStart:sender;
  33. - setIncr:sender;
  34. - setEnd:sender;
  35. - setLevels:sender;
  36.  
  37. @end
  38.